Kurz nochmal:
Die Notice erhalte ich weiterhin:
Ich habe das hier nun erweitert:Notice: file_get_contents(): Content-type not specified assuming application/x-www-form-urlencoded in D:\wamp\apache2\htdocs\xxx\includes\functions.php on line 112
Die Notice verschwindet mit:PHP-Code:$opts = array('http' => array(
"method" => "POST",
"content" => $postdata,
));
Ob das nun so weit ok ist, kann ich nicht sagen. Beim Crypten gibt es keine Probleme.PHP-Code:$opts = array('http' => array(
"method" => "POST",
'header' => "Connection: close\r\n" .
"Content-type: application/x-www-form-urlencoded\r\n" .
"Content-Length: " . strlen($postdata) . "\r\n",
"content" => $postdata,
));
LG



THEMENSTARTER

Zitieren